Inside Macintosh: Sound
| Previous | Chapter contents | Chapter top | Section top | Next |
Every chunk in an AIFF or AIFF-C file contains a chunk header that defines characteristics of the chunk. The ChunkHeader data type defines a chunk header.
TYPE ChunkHeader =
RECORD
ckID: ID; {chunk type ID}
ckSize: LongInt; {number of bytes of data}
END;
| Previous | Chapter contents | Chapter top | Section top | Next |